home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / earcd / comm / tcp / ifcheck.lha / smakefile < prev   
Makefile  |  1997-01-30  |  171b  |  13 lines

  1. CFLAGS    =    INCDIR=NETINCLUDE:
  2.  
  3. OBJS    =    ifcheck.o
  4.  
  5. ifcheck: $(OBJS)
  6.     sc link $(OBJS) TO $@
  7.  
  8. ifcheck.o: ifcheck.c
  9.     sc $(CFLAGS) ifcheck.c
  10.  
  11. clean:
  12.     -delete $(OBJS) *.info *.lnk
  13.